home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / misc-part2 / 10821 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  3.7 KB

  1. Path: news.delphi.com!usenet
  2. From: jdow@BIX.com (Joanne Dow)
  3. Newsgroups: comp.sys.amiga.misc
  4. Subject: Re: Formatting Hard Drives>2gig
  5. Date: 2 Apr 1996 10:54:14 GMT
  6. Organization: Delphi Internet Services Corporation
  7. Message-ID: <4jr10m$7uo@news2.delphi.com>
  8. References: <19960329.7BAF540.95CA@ccubb.com>
  9. Reply-To: jdow@BIX.com (Joanne Dow)
  10. NNTP-Posting-Host: bix.com
  11. X-Newsreader: NetBix 1.253
  12. X-Newsreader-Author: lwilton@BIX.com (Loren Wilton)
  13.     This message has been posted with development version software.
  14.     If there are any problems with the message format, send me mail.
  15.  
  16. In article <19960329.7BAF540.95CA@ccubb.com>, devans@ccubb.com (David Evans) wrote:
  17. >
  18. >I have run into a "bug" which I can't explain.  I recently aquired a Quantum
  19. >Grand Prix drive (nice critter) and have been attempting to format it.  My
  20. >Fastlane card initially formatted it with:
  21. >
  22. >        22669 Cylinders 7 heads, and 52 blocks per track
  23. >
  24. >According to the specs of the Grand Prix however it has:
  25. >
  26. >        20 heads, 4066 tracks (cylinders?), and 118 sectors per track
  27.  
  28. Does not matter in the least with Amigas.
  29.  
  30. >Using my fastlane setup, I get r/w errors on my last partition on that drive.
  31. >It appears that the "format" of the head/blocks/cylinders execeeds the
  32. >capacity of the drive (guess).  When re-configured to the specs of the Grand
  33. >Prix (20,4066,118), it works.
  34.  
  35. Not unlikely. You are playing with a 4.1gig drive there. There is a portion of
  36. the drive you cannot reach with the basic OS facilities as they are presented.
  37.  
  38. 1) Make sure no partition is even a gnosh over 2gigs. (And if you are an
  39. excitable sort make the partitions smaller. Revalidating a nearly full 2gig
  40. partition is heart attack city it takes so long.)
  41.  
  42. 2) Either get one of the addon devices that allow use of drives larger than
  43. 4gigs as multiple psuedo-drives each less than 2 gigs or abandon the last 100Meg
  44. of the drive.
  45.  
  46. 3) Manually construct your partitions using an editor then flog it onto the disk
  47. with RDPrepX, the low level portion of RDPrep. That is what we found we had to
  48. do here with Loren's Grand Prix. Here is a section of the mountfile (rdprepx
  49. readable) that we produced:
  50.  
  51. /* RigidDiskBlock. */
  52. QUANTUM XP34301         1051:    disk = scsi.device
  53.         Unit = 3
  54.         BytesperBlock = 512
  55.         Cylinders = 2040
  56.         Heads = 32
  57.         BlocksPerTrack = 64
  58.         CylinderBlocks = 2048
  59.         RDBlow = 5 ; RDBhi = 2047
  60.         MinCyl = 1 ; MaxCyl = 2039
  61.         Interleave = 1
  62.         HiLun = TRUE
  63.         HiID = TRUE
  64.         HiDrive = TRUE
  65.         Reselect = TRUE
  66. #
  67. /* Partition. */
  68. WB_2.x:    device = scsi.device
  69.         Unit = 3
  70.         Flags = 0
  71.         /*! ReadOnly = FALSE */
  72.         FileSystem = l:FastFileSystem
  73.         StackSize = 4096
  74.         GlobVec = -1
  75.         Surfaces = 32
  76.         BlockSize = 512
  77.         BlocksPerTrack = 64
  78.         Reserved = 2
  79.         Interleave = 0
  80.         LowCyl = 402 ; HighCyl = 441
  81.         PreAlloc = 0
  82.         Buffers = 30
  83.         BufMemType = 0
  84.         DOSType = 0x444f5301
  85.         MaxTransfer = 16777215
  86.         Mask = 0x7ffffffe
  87.         BootPri = 3
  88.         Mount = 1
  89.         /*! Bootable = 1 */
  90. #
  91. /* Partition. */
  92. Work:    device = scsi.device
  93.         Unit = 3
  94.         Flags = 0
  95.         /*! ReadOnly = FALSE */
  96.         FileSystem = l:FastFileSystem
  97.         StackSize = 4096
  98.         GlobVec = -1
  99.         Surfaces = 32
  100.         BlockSize = 512
  101.         BlocksPerTrack = 64
  102.         Reserved = 2
  103.         Interleave = 0
  104.         LowCyl = 442 ; HighCyl = 819
  105.         PreAlloc = 0
  106.         Buffers = 30
  107.         BufMemType = 0
  108.         DOSType = 0x444f5301
  109.         MaxTransfer = 16777215
  110.         Mask = 0x7ffffffe
  111.         BootPri = 0
  112.         Mount = 1
  113.         /*! Bootable = 0 */
  114. #
  115.  
  116. Just continue that on out modifying things for the partition sizes you want.
  117. Just do *NOT* go past 4gigs or things will wrap and destroy interesting portions
  118. of your RDBs and first partition. Make sure that 4398046511104 is greater than
  119. the product of surfaces * blockspertrack * blocksize * (highcyl + 1).
  120.  
  121. {^_^}     Joanne Dow, Amiga Exchange Editor on BIX, aka The Wizardess
  122.           jdow@bix.com, jdow@delphi.com, jdow@earthlink.net
  123.  
  124.